body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
}

header {
    background-color: #000000;
    color: white;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo{
    width: 75px;
    left: 0px;
}
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.background-clip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
@media(min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
    
}
@media(max-aspect-ratio:16/9){
    .background-clip{
        width: auto;
        height: 100%;

    }
    
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.marina{
    opacity: 100%;
}

div.main{
    width: 400px;
    margin: 100px auto 0px auto;
}
h2{
    text-align: center;
    padding: 20px;
    font-family: sans serif;
}
div.register{
    background-color: rgb(0, 0, 0);
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    border: 1px soid rgb(0, 0, 0);
    box-shadow: 2px 2px 15px
    rgba(0,0,0,0,3);
    color: rgb(255, 255, 255);
}
form#register{
    margin: 40px;
}
label{
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    font-style: italic;
}
input #name{
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline: 0;
    padding: 7px;
    background-color: #fff;
    box-shadow: inset 1px 1px 5px
    rgba (0,0,0,0,0.3);
}
input #submit{
    width: 300px;
    padding: 7px;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    background-color: rgb(0, 0, 0);
    color: #fff;
    cursor: pointer;
    border: 1px solid
    rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
label,span,h2{
    text-shadow: 1px 1px 5px
    rgba(0,0,0,0,3);
    
}



.footer {
    background-color: #000000;
    color: #ECF0F1;
    padding: 20px 40px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-logo img {
    max-width: 150px;
    height: auto;
  }
  .copyright{
    text-align: center;
  }
  .footer-contact{
    right: 0%;
    bottom: 100px;
  }
  

  @media (max-width: 800px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-logo {
      margin-bottom: 15px;
    }
  }






